EmailMessage Class

Used to hold the contents of an email message and its enclosures, if any.

Events

None

Properties

Attachments

CCAddress

Subject

BCCAddress

FromAddress

Subject

BodyEnriched

FromAddress

ToAddress

BodyHTML

Headers

 

BodyPlainText

Source

 

Methods

AddBCCRecipient

AddCCRecipient

AddRecipient


More information available in parent classes: Object


Example

The following example sets the values of the From Address, Subject, Body, and Headers from the values of the Text properties of EditFields in a window. The EditFields named fromAddressfld, subjectFld, bodyFld, and htmlFld contain this information:

Dim mail as = New EmailMessage
mail.fromAddress=fromAddressFld.text
mail.subject=subjectFld.text
mail.bodyPlainText = bodyFld.text
mail.bodyHTML = htmlFld.text

See also the examples for the SMTPSocket and POP3Socket classes.


See Also

EmailAttachment, EmailHeaders, HTTPSecureSocket, HTTPSocket, POP3SecureSocket, POP3Socket, SMTPSecureSocket, SMTPSocket, SocketCore, SSLSocket, TCPSocket classes.